home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Graphic Gems I, II & III (C_C++) / Graphics Gems C Code.sea / GemsI / Src / PolyScan / Makefile < prev    next >
Makefile  |  1992-06-16  |  380b  |  13 lines

  1. # Makefile for scantest, test program for generic convex polygon scan conversion
  2. #
  3. # Note: fancytest.c needs a main routine and several auxiliary routines
  4. # in order to be compiled.
  5.  
  6. CFLAGS = $(GENCFLAGS)
  7.  
  8. scantest: scantest.o poly_scan.o poly.o
  9.     $(CC) $(CFLAGS) -o scantest scantest.o poly_scan.o poly.o -lm
  10.  
  11. clean:
  12.     /bin/rm -f scantest.o poly_clip.o poly_scan.o poly.o scantest
  13.